Skip to content

chore(deps): update all non-major dependencies#132

Closed
renovate[bot] wants to merge 1 commit intomainfrom
renovate/all-minor-patch
Closed

chore(deps): update all non-major dependencies#132
renovate[bot] wants to merge 1 commit intomainfrom
renovate/all-minor-patch

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate bot commented Dec 20, 2025

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
@types/node (source) ^25.0.3^25.5.0 age confidence
@vitest/coverage-v8 (source) ^4.0.16^4.1.0 age confidence
esbuild ^0.27.2^0.27.4 age confidence
eslint (source) ^9.39.2^9.39.4 age confidence
eslint-config-unjs ^0.5.0^0.6.2 age confidence
obuild ^0.4.9^0.4.32 age confidence
pnpm (source) 10.26.010.32.1 age confidence
prettier (source) ^3.7.4^3.8.1 age confidence
vite (source) ^7.3.0^7.3.1 age confidence
vitest (source) ^4.0.16^4.1.0 age confidence

Release Notes

vitest-dev/vitest (@​vitest/coverage-v8)

v4.1.0

Compare Source

Vitest 4.1 is out!

This release page lists all changes made to the project during the 4.1 beta. To get a review of all the new features, read our blog post.

   🚀 Features
   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

v4.0.18

Compare Source

   🚀 Experimental Features
   🐞 Bug Fixes
    View changes on GitHub

v4.0.17

Compare Source

   🚀 Experimental Features
   🐞 Bug Fixes
    View changes on GitHub
evanw/esbuild (esbuild)

v0.27.4

Compare Source

  • Fix a regression with CSS media queries (#​4395, #​4405, #​4406)

    Version 0.25.11 of esbuild introduced support for parsing media queries. This unintentionally introduced a regression with printing media queries that use the <media-type> and <media-condition-without-or> grammar. Specifically, esbuild was failing to wrap an or clause with parentheses when inside <media-condition-without-or>. This release fixes the regression.

    Here is an example:

    /* Original code */
    @&#8203;media only screen and ((min-width: 10px) or (min-height: 10px)) {
      a { color: red }
    }
    
    /* Old output (incorrect) */
    @&#8203;media only screen and (min-width: 10px) or (min-height: 10px) {
      a {
        color: red;
      }
    }
    
    /* New output (correct) */
    @&#8203;media only screen and ((min-width: 10px) or (min-height: 10px)) {
      a {
        color: red;
      }
    }
  • Fix an edge case with the inject feature (#​4407)

    This release fixes an edge case where esbuild's inject feature could not be used with arbitrary module namespace names exported using an export {} from statement with bundling disabled and a target environment where arbitrary module namespace names is unsupported.

    With the fix, the following inject file:

    import jquery from 'jquery';
    export { jquery as 'window.jQuery' };

    Can now always be rewritten as this without esbuild sometimes incorrectly generating an error:

    export { default as 'window.jQuery' } from 'jquery';
  • Attempt to improve API handling of huge metafiles (#​4329, #​4415)

    This release contains a few changes that attempt to improve the behavior of esbuild's JavaScript API with huge metafiles (esbuild's name for the build metadata, formatted as a JSON object). The JavaScript API is designed to return the metafile JSON as a JavaScript object in memory, which makes it easy to access from within a JavaScript-based plugin. Multiple people have encountered issues where this API breaks down with a pathologically-large metafile.

    The primary issue is that V8 has an implementation-specific maximum string length, so using the JSON.parse API with large enough strings is impossible. This release will now attempt to use a fallback JavaScript-based JSON parser that operates directly on the UTF8-encoded JSON bytes instead of using JSON.parse when the JSON metafile is too big to fit


Configuration

📅 Schedule: Branch creation - "after 2am and before 3am" (UTC), Automerge - "after 1am and before 2am" (UTC).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 81483bb to 1a9cf75 Compare December 23, 2025 14:44
@renovate renovate bot changed the title chore(deps): update pnpm to v10.26.1 chore(deps): update pnpm to v10.26.2 Dec 23, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 1a9cf75 to 368fe6b Compare December 30, 2025 22:48
@renovate renovate bot changed the title chore(deps): update pnpm to v10.26.2 chore(deps): update pnpm to v10.27.0 Dec 30, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 368fe6b to e200bcf Compare January 2, 2026 14:53
@renovate renovate bot changed the title chore(deps): update pnpm to v10.27.0 chore(deps): update all non-major dependencies Jan 2, 2026
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 10 times, most recently from 03baa01 to 0a4550f Compare January 13, 2026 02:58
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 8355dd1 to cd6a820 Compare January 20, 2026 11:01
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 8 times, most recently from b8f8f38 to 864df84 Compare January 27, 2026 23:01
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from bda5b38 to 5aeabf0 Compare February 12, 2026 13:06
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from 9e451ea to fb9717b Compare February 24, 2026 00:06
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 03e9e73 to 3ea7a67 Compare February 28, 2026 22:32
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 9 times, most recently from 47d284e to 036f3ba Compare March 12, 2026 15:31
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 036f3ba to eaff15f Compare March 12, 2026 19:48
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from eaff15f to 0472806 Compare March 14, 2026 23:17
@pi0 pi0 closed this Mar 14, 2026
@renovate renovate bot deleted the renovate/all-minor-patch branch March 14, 2026 23:19
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant